Welcome![Sign In][Sign Up]
Location:
Search - socket udp

Search list

[Internet-NetworkSocket

Description: 内有UDP点对点聊天及TCP.UDP高级编程等相关的详细代码。从事网络编程开发及学习者值得借鉴。-Within the UDP peer-to-peer chat and have TCP.UDP high-level programming code and other related details. Engaged in the development of network programming and learners to learn.
Platform: | Size: 297984 | Author: wangxh | Hits:

[Internet-Networkudpsocket

Description: linux下的udp socket通信,包括client和server端程序代码。-Udp socket communications linux under , including both client and server sides.
Platform: | Size: 1024 | Author: 白鸽 | Hits:

[Internet-NetworktcpServer

Description: tcp udp socket vc++ c#
Platform: | Size: 400384 | Author: jia | Hits:

[JSPOReillyJavaNetworkProgrammingThirdEditionOc2004.ra

Description: 本书是一本以网络应用实例为主的实用型参考书,主要包括访问网络资源、网络Applet小程序、Socket、UDP协议通讯、网络组播、邮件收发、远程方法调用、多媒体数据流的传输和播放,以及常用网络工具的实例等。-This book is a web-based application of practical reference books, including access to network resources, network Applet applet, Socket, UDP communication protocol, network multicast, to send and receive e-mail, remote method invocation, the transmission of multimedia data streams and play, as well as examples of commonly used, such as web-based tools.
Platform: | Size: 2057216 | Author: 洛洛 | Hits:

[Internet-NetworkSOCKET

Description: 采用了C++ BUILDER6.0中的SOCKET控件、UDP控件和系统自带的API函数来实现屏幕抓取、文件传输、远程控制等核心内容-failed to translate
Platform: | Size: 165888 | Author: 董晨晨 | Hits:

[Internet-Networkudp

Description: 利用socket进行的UDP连接,包括发送端和接收器端.-Socket using the UDP connection, including sender and receiver.
Platform: | Size: 2363392 | Author: lyq | Hits:

[TCP/IP stackSocket

Description: 主要是进行socket建立Tcp/ip传输,并且也可以进行UDP的传输-Socket is mainly carried out to establish Tcp/ip transmission, and will be able to conduct UDP transmission
Platform: | Size: 21504 | Author: asas | Hits:

[Internet-NetworkUDPsocket

Description: 一个例子,用VC实现多线程的SOCKET UDP 通信。-An example of using VC to achieve multithreading SOCKET UDP communication.
Platform: | Size: 22528 | Author: 李洪坛 | Hits:

[TCP/IP stackServer

Description: UDP 服务端,socket编程的好帮手-UDP SEVER
Platform: | Size: 32768 | Author: qixiansheng | Hits:

[Internet-Networksocket

Description: 基于控制台的socket通信实例: 包括1.基于控制台socket通信 2.基于控制台的聊天程序-tcp 3.基于控制台的聊天程序-udp 注意:上传的为源代码基于控制台socket通信 使用时为每个文件新建一个工程先运行Srv再运行Client-Console-based socket communication examples include: 1. Console-based socket communication 2. Console-based chat program-tcp 3. Console-based chat program-udp Note: upload the source code for the console-based socket communication using time for each file create a new project first and then run the Client is running Srv
Platform: | Size: 5120 | Author: 刘小白 | Hits:

[TCP/IP stackUDP_Winsock

Description: a simple UDP socket connection using windows socket library (WS2_32.lib).
Platform: | Size: 7907328 | Author: ariesooi | Hits:

[Internet-Networkudp_sock_multicast

Description: socket实现udp组播,需要用UDP通信可以参照-udp multicast socket implementation
Platform: | Size: 208896 | Author: andy | Hits:

[TCP/IP stacktcs.c

Description: 实现UDP传输 for linux udp socket -for linux udp socket
Platform: | Size: 1024 | Author: 大彬 | Hits:

[JSP/JavaSocket

Description: java实现UDP socket打洞,使消息在nat之间传递-java implementation UDP socket holes, so that messages passed between the nat! ! !
Platform: | Size: 111616 | Author: bobhpf | Hits:

[Windows DevelopSocket

Description: 这是一个UDP小程序,里面主要就是发送和接收的源代码。-This is a UDP small program, which is mainly to send and receive the source code.
Platform: | Size: 36864 | Author: 仇荣华 | Hits:

[CSharpudp

Description: it is about socket programming in client side in windows.
Platform: | Size: 36864 | Author: saeid zamani | Hits:

[Otherthe-realization-of-Xmodem-protocol-based-on-UDP.ra

Description: 对Xmodem 协议进行分析,设计Xmodem 协议的结构、机制、元素等。利用Socket 接口编程实现基于UDP 的Xmodem 协议-Of Xmodem protocol analysis, design Xmodem protocol structure, mechanism, elements and so on. Socket Interface Programming using the Xmodem protocol based on UDP
Platform: | Size: 719872 | Author: celine | Hits:

[ELanguageclient_udp

Description: C++ SOCKET UDP IMPLIMENTATION
Platform: | Size: 1024 | Author: zakibsix | Hits:

[Internet-Networksocket

Description: tcp udp 网络编程源码 //创建套接字 sHost = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) if(INVALID_SOCKET == sHost) { printf("socket failed!\n") WSACleanup() //释放套接字资源 return -1 } //设置服务器地址 servAddr.sin_family =AF_INET servAddr.sin_addr.s_addr = inet_addr("127.0.0.1") servAddr.sin_port = htons((short)4999) int nServAddlen = sizeof(servAddr) //连接服务器 retVal=connect(sHost,(LPSOCKADDR)&servAddr, sizeof(servAddr)) if(SOCKET_ERROR == retVal) { printf("connect failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 } //向服务器发送数据 ZeroMemory(buf, BUF_SZIE) strcpy(buf, "MyTCP") retVal = send(sHost, buf, strlen(buf), 0) if (SOCKET_ERROR == retVal) { printf("send failed!\n") closesocket(sHost) //关闭套接字 WSACleanup() //释放套接字资源 return -1 -tcp udp network programming source code// create a socket sHost = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP) if (INVALID_SOCKET == sHost) (printf ( " socket failed! \ n" ) WSACleanup () // release socket Word of resources return-1 )// set the server address servAddr.sin_family = AF_INET servAddr.sin_addr.s_addr = inet_addr ( " 127.0.0.1" ) servAddr.sin_port = htons ((short) 4999) int nServAddlen = sizeof ( servAddr) // connect to the server retVal = connect (sHost, (LPSOCKADDR) & servAddr, sizeof (servAddr)) if (SOCKET_ERROR == retVal) (printf ( " connect failed! \ n" ) closesocket (sHost) // Close socket WSACleanup () // release the socket resources return-1 )// to the server sending data ZeroMemory (buf, BUF_SZIE) strcpy (buf, " MyTCP" ) retVal = send (sHost, buf, strlen (buf), 0) if (SOCKET_ERROR == retVal) (printf ( " send failed! \ n" ) closesocket (sHost) // close the socket WSACleanup () // release socket resources to return
Platform: | Size: 2048 | Author: 闛靚 | Hits:

[Linux-Unixfarsight_network_demo1.0.tar

Description: linix网络编程,tcp ,udp,多线程,socket等比较适合初学者学习的源代码-linix network programming, tcp, udp, multi-threading, socket and so more suitable for beginners to learn the source code
Platform: | Size: 109568 | Author: 浪击天涯 | Hits:
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »

CodeBus www.codebus.net